home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / W32SPDLL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-19  |  497 b   |  17 lines

  1. //==================================
  2. // W32SVSPY - Matt Pietrek 1995
  3. // FILE: W32SPDLL.H
  4. //==================================
  5. typedef struct
  6. {
  7.     DWORD   serviceId;
  8.     DWORD   processId;
  9.     DWORD   threadId;
  10.     DWORD   param1;
  11.     char    szName[8];      // Not null terminated if 8 bytes long!!!
  12. } WIN32SERVICECALLINFO, *PWIN32SERVICECALLINFO;
  13.  
  14. void InitWin32ServiceSpyDLL(void);
  15. void StopWin32ServiceSpy(void);
  16. BOOL GetWin32ServiceLogInfo( PDWORD, PWIN32SERVICECALLINFO * );
  17.